home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if "%1" == "16" goto WIN16
- if "%1" == "MS" goto MS
- if "%1" == "BC" goto BC
- if "%1" == "WC" goto WC
- if "%1" == "ms" goto MS
- if "%1" == "bc" goto BC
- if "%1" == "wc" goto WC
- if "%1" == "u" goto MSU
- if "%1" == "U" goto MSU
- echo *** Usage is:
- echo *** 'INSTALL 16' for all Win16 compilers.
- echo *** 'INSTALL MS' for Win32 native Microsoft C/C++, Visual Basic.
- echo *** 'INSTALL BC' for Win32 native Borland C/C++, C Builder, Delphi.
- echo *** 'INSTALL WC' for Win32 native WATCOM C/C++
- echo *** 'INSTALL U' for Win32 "universal"
- echo *** Requires "declspec" keyword, which is supported in
- echo *** Microsoft 4.0, Borland 5.0, and Watcom 11.0 compilers.
- echo *** Can also be used with 32 bit Visual Basic and Delphi.
- echo ***
- goto FINI
- :WIN16
- echo ...Installing Win16 LIB and DLL
- REM (Only one version of Win16 DLL and LIB).
- copy SEE.H2 SEE.H
- goto DONE
- :MSU
- echo ...Installing Universal (Microsoft) LIB and DLL
- copy SEE32U.LIB SEE32.LIB
- copy SEE32U.DLL SEE32.DLL
- copy SEE.H2 SEE.H
- goto DONE
- :MS
- echo ...Installing native Microsoft LIB and DLL
- copy SEE32M.LIB SEE32.LIB
- copy SEE32M.DLL SEE32.DLL
- copy SEE.H1 SEE.H
- goto DONE
- :BC
- echo ...Installing native Borland LIB and DLL
- copy SEE32B.LIB SEE32.LIB
- copy SEE32B.DLL SEE32.DLL
- copy SEE.H1 SEE.H
- goto DONE
- :WC
- echo ...Installing native Watcom LIB and DLL
- copy SEE32W.LIB SEE32.LIB
- copy SEE32W.DLL SEE32.DLL
- copy SEE.H1 SEE.H
- :DONE
- echo ...Installation done. Before compiling example programs, edit
- echo ...EMAIL.H with your email configuration as described in section
- echo ...3.5 of the SEE4C Users Manual (SEE4C_U.TXT).
-
- :FINI
-
-